home *** CD-ROM | disk | FTP | other *** search
/ comtecelectrical.ca / www.comtecelectrical.ca.tar / www.comtecelectrical.ca / infobots / Backup / MSOCache / All Users / 90000409-6000-11D3-8CFE-0150048383C9 / M3561414.CAB / OINFOP11.MOF_1033 < prev    next >
Text File  |  2003-07-12  |  74KB  |  1,829 lines

  1. //**************************************************************************
  2. //* File: OInfoP11.mof - Office Extension MOF File for MSInfo >= 5.0
  3. //**************************************************************************
  4. #pragma autorecover
  5.  
  6. //*************************************************************
  7. //***    Creates namespace for MSAPPS
  8. //*************************************************************
  9. #pragma namespace ("\\\\.\\Root")
  10.  
  11. instance of __Namespace
  12. {
  13.     Name = "MSAPPS11";
  14.     //should this remain MSAPPS?
  15. };
  16.  
  17. //*************************************************************
  18. //***    Changes focus to new namespace
  19. //*************************************************************
  20.  
  21. #pragma namespace ("\\\\.\\Root\\MSAPPS11")
  22.  
  23.  
  24. //**************************************************************************
  25. //* Declare an instance of the __Win32Provider so as to "register" the
  26. //* Office provider.
  27. //**************************************************************************
  28. instance of __Win32Provider as $P
  29. {
  30.     Name = "OffProv11";
  31.     // ClsId = "{D2BD7935-05FC-11D2-9059-00C04FD7A1BD}";
  32.     //this was define as class DECLSPEC_UUID("D2BD7935-05FC-11D2-9059-00C04FD7A1BD")
  33.     //OfficeObj;
  34.     // in Offprov.h
  35.     ClsId = "{F7107F37-C761-4748-B686-055F45889DCD}";
  36. };
  37.  
  38. instance of __InstanceProviderRegistration
  39. {
  40.     Provider = $P;
  41.     SupportsGet = TRUE;
  42.     SupportsPut = FALSE;
  43.     SupportsEnumeration = TRUE;
  44.     SupportsDelete = FALSE;
  45.     QuerySupportLevels = NULL;
  46. };
  47.  
  48. //**************************************************************************
  49. //* Class: Win32_Word11Summary
  50. //* Derived from:
  51. //**************************************************************************
  52. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  53. class Win32_Word11Summary
  54. {
  55.     [read: ToInstance ToSubClass] string Name;
  56.     [read: ToInstance ToSubClass] string Version;
  57.     [read: ToInstance ToSubClass] string Build;
  58.     [read: ToInstance ToSubClass] string ProductID;
  59.     [read: ToInstance ToSubClass] string Path;
  60.     [read: ToInstance ToSubClass] string Language;
  61.     [read: ToInstance ToSubClass] string SystemLanguage;
  62.     [read: ToInstance ToSubClass] string ActivePrinter;
  63.     [read: ToInstance ToSubClass] uint32 DocumentCount;
  64.     [read: ToInstance ToSubClass] uint32 TemplateCount;
  65.     [read: ToInstance ToSubClass] uint32 AddinCount;
  66. };
  67.  
  68. //**************************************************************************
  69. //* Class: Win32_Word11Document
  70. //* Derived from: 
  71. //**************************************************************************
  72. [dynamic: ToInstance, provider("OffProv11")]
  73. class Win32_Word11Document
  74. {
  75.     [key, read: ToInstance ToSubClass] string Name;
  76.     [read: ToInstance ToSubClass] string Path;
  77.     [read: ToInstance ToSubClass] real32 Size;
  78.     [read: ToInstance ToSubClass] datetime CreateDate;
  79. };
  80.  
  81. //**************************************************************************
  82. //* Class: Win32_Word11Template
  83. //* Derived from: 
  84. //**************************************************************************
  85. [dynamic: ToInstance, provider("OffProv11")]
  86. class Win32_Word11Template
  87. {
  88.     [key, read: ToInstance ToSubClass] string Name;
  89.     [read: ToInstance ToSubClass] string Path;
  90.     [read: ToInstance ToSubClass] string Type;
  91. };
  92.  
  93. //**************************************************************************
  94. //* Class: Win32_Word11Addin
  95. //* Derived from: 
  96. //**************************************************************************
  97. [dynamic: ToInstance, provider("OffProv11")]
  98. class Win32_Word11Addin
  99. {
  100.     [key, read: ToInstance ToSubClass] string Name;
  101.     [read: ToInstance ToSubClass] string Path;
  102.     [read: ToInstance ToSubClass] boolean Loaded;
  103.     [read: ToInstance ToSubClass] boolean Autoloaded;
  104. };
  105.  
  106. //**************************************************************************
  107. //* Class: Win32_Word11ActiveDocument
  108. //* Derived from: 
  109. //**************************************************************************
  110. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  111. class Win32_Word11ActiveDocument
  112. {
  113.     [read: ToInstance ToSubClass] string Name;
  114.     [read: ToInstance ToSubClass] string Path;
  115.     [read: ToInstance ToSubClass] real32 Size;
  116.     [read: ToInstance ToSubClass] datetime CreateDate;
  117.     [read: ToInstance ToSubClass] string Author;
  118.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  119.     [read: ToInstance ToSubClass] string LastAuthor;
  120.     [read: ToInstance ToSubClass] string Template;
  121.     [read: ToInstance ToSubClass] uint32 Chars;
  122.     [read: ToInstance ToSubClass] uint32 CharsWithSpaces;
  123.     [read: ToInstance ToSubClass] uint32 Words;
  124.     [read: ToInstance ToSubClass] uint32 Lines;
  125.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  126.     [read: ToInstance ToSubClass] uint32 Pages;
  127.     [read: ToInstance ToSubClass] uint32 Sections;
  128.     [read: ToInstance ToSubClass] string View;
  129.     [read: ToInstance ToSubClass] uint32 ZoomPercentage;
  130.     [read: ToInstance ToSubClass] boolean AllowFastSaves;
  131.     [read: ToInstance ToSubClass] sint32 WindowPosLeft;
  132.     [read: ToInstance ToSubClass] sint32 WindowPosTop;
  133.     [read: ToInstance ToSubClass] string StoryTypes;
  134. };
  135.  
  136. //**************************************************************************
  137. //* Class: Win32_Word11ActiveDocumentNotable
  138. //* Derived from: 
  139. //**************************************************************************
  140. [dynamic: ToInstance, provider("OffProv11")]
  141. class Win32_Word11ActiveDocumentNotable
  142. {
  143.     [key, read: ToInstance ToSubClass] string Text;
  144. };
  145.  
  146. //**************************************************************************
  147. //* Class: Win32_Word11Fields
  148. //* Derived from: 
  149. //**************************************************************************
  150. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  151. class Win32_Word11Fields
  152. {
  153.     [read: ToInstance ToSubClass] uint32 FieldCount;
  154.     [read: ToInstance ToSubClass] boolean ShowFieldCodes;
  155.     [read: ToInstance ToSubClass] boolean UpdateFieldsAtPrint;
  156.     [read: ToInstance ToSubClass] boolean UpdateLinksAtOpen;
  157. };
  158.  
  159. //**************************************************************************
  160. //* Class: Win32_Word11Field
  161. //* Derived from: 
  162. //**************************************************************************
  163. [dynamic: ToInstance, provider("OffProv11")]
  164. class Win32_Word11Field
  165. {
  166.     [key, read: ToInstance ToSubClass] uint32 Index;
  167.     [read: ToInstance ToSubClass] string Type;
  168.     [read: ToInstance ToSubClass] string Code;
  169.     [read: ToInstance ToSubClass] boolean Locked;
  170. };
  171.  
  172. //**************************************************************************
  173. //* Class: Win32_Word11FileConverters
  174. //* Derived from: 
  175. //**************************************************************************
  176. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  177. class Win32_Word11FileConverters
  178. {
  179.     [read: ToInstance ToSubClass] string FileConverterCount;
  180. };
  181.  
  182. //**************************************************************************
  183. //* Class: Win32_Word11FileConverter
  184. //* Derived from: 
  185. //**************************************************************************
  186. [dynamic: ToInstance, provider("OffProv11")]
  187. class Win32_Word11FileConverter
  188. {
  189.     [key, read: ToInstance ToSubClass] string Name;
  190.     [read: ToInstance ToSubClass] boolean CanOpen;
  191.     [read: ToInstance ToSubClass] boolean CanSave;
  192.     [read: ToInstance ToSubClass] string Extensions;
  193. };
  194.  
  195. //**************************************************************************
  196. //* Class: Win32_Word11Fonts
  197. //* Derived from: 
  198. //**************************************************************************
  199. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  200. class Win32_Word11Fonts
  201. {
  202.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  203.     [read: ToInstance ToSubClass] uint32 FontCount;
  204. };
  205.  
  206. //**************************************************************************
  207. //* Class: Win32_Word11Font
  208. //* Derived from: 
  209. //**************************************************************************
  210. [dynamic: ToInstance, provider("OffProv11")]
  211. class Win32_Word11Font
  212. {
  213.     [key, read: ToInstance ToSubClass] string Name;
  214. };
  215.  
  216. //**************************************************************************
  217. //* Class: Win32_Word11Sections
  218. //* Derived from: 
  219. //**************************************************************************
  220. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  221. class Win32_Word11Sections
  222. {
  223.     [read: ToInstance ToSubClass] uint32 SectionCount;
  224. };
  225.  
  226. //**************************************************************************
  227. //* Class: Win32_Word11HeaderAndFooter
  228. //* Derived from: 
  229. //**************************************************************************
  230. [dynamic: ToInstance, provider("OffProv11")]
  231. class Win32_Word11HeaderAndFooter
  232. {
  233.     [key, read: ToInstance ToSubClass] uint32 Section;
  234.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  235.     [read: ToInstance ToSubClass] real32 FooterDistance;
  236.     [read: ToInstance ToSubClass] uint32 HeaderChars;
  237.     [read: ToInstance ToSubClass] boolean HeaderLinkedToPrevious;
  238.     [read: ToInstance ToSubClass] string HeaderText;
  239.     [read: ToInstance ToSubClass] uint32 FooterChars;
  240.     [read: ToInstance ToSubClass] boolean FooterLinkedToPrevious;
  241.     [read: ToInstance ToSubClass] string FooterText;
  242.     [read: ToInstance ToSubClass] uint32 FirstHeaderChars;
  243.     [read: ToInstance ToSubClass] boolean FirstHeaderLinkedToPrevious;
  244.     [read: ToInstance ToSubClass] string FirstHeaderText;
  245.     [read: ToInstance ToSubClass] uint32 FirstFooterChars;
  246.     [read: ToInstance ToSubClass] boolean FirstFooterLinkedToPrevious;
  247.     [read: ToInstance ToSubClass] string FirstFooterText;
  248.     [read: ToInstance ToSubClass] uint32 EvenHeaderChars;
  249.     [read: ToInstance ToSubClass] boolean EvenHeaderLinkedToPrevious;
  250.     [read: ToInstance ToSubClass] string EvenHeaderText;
  251.     [read: ToInstance ToSubClass] uint32 EvenFooterChars;
  252.     [read: ToInstance ToSubClass] boolean EvenFooterLinkedToPrevious;
  253.     [read: ToInstance ToSubClass] string EvenFooterText;
  254.     [read: ToInstance ToSubClass] string Notables;
  255. };
  256.  
  257. //**************************************************************************
  258. //* Class: Win32_Word11Hyperlinks
  259. //* Derived from: 
  260. //**************************************************************************
  261. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  262. class Win32_Word11Hyperlinks
  263. {
  264.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  265. };
  266.  
  267. //**************************************************************************
  268. //* Class: Win32_Word11Hyperlink
  269. //* Derived from: 
  270. //**************************************************************************
  271. [dynamic: ToInstance, provider("OffProv11")]
  272. class Win32_Word11Hyperlink
  273. {
  274.     [key, read: ToInstance ToSubClass] uint32 Index;
  275.     [read: ToInstance ToSubClass] string Target;
  276.     [read: ToInstance ToSubClass] string Address;
  277.     [read: ToInstance ToSubClass] string TextToDisplay;
  278.     [read: ToInstance ToSubClass] string Type;
  279.     [read: ToInstance ToSubClass] string Subaddress;
  280.     [read: ToInstance ToSubClass] string ScreenTip;
  281.     [read: ToInstance ToSubClass] string Name;
  282. };
  283.  
  284. //**************************************************************************
  285. //* Class: Win32_Word11MailMerge
  286. //* Derived from: 
  287. //**************************************************************************
  288. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  289. class Win32_Word11MailMerge
  290. {
  291.     [read: ToInstance ToSubClass] string DocumentName;
  292.     [read: ToInstance ToSubClass] string DocumentType;
  293.     [read: ToInstance ToSubClass] string MergeTo;
  294.     [read: ToInstance ToSubClass] string State;
  295.     [read: ToInstance ToSubClass] boolean SuppressBlankLines;
  296.     [read: ToInstance ToSubClass] boolean ViewFieldCodes;
  297.     [read: ToInstance ToSubClass] uint32 FieldCount;
  298.     [read: ToInstance ToSubClass] string FieldCodes;
  299.     [read: ToInstance ToSubClass] string DataSourceName;
  300.     [read: ToInstance ToSubClass] string DataSourceType;
  301.     [read: ToInstance ToSubClass] string ActiveRecord;
  302.     [read: ToInstance ToSubClass] string FieldNames;
  303.     [read: ToInstance ToSubClass] string Notables;
  304. };
  305.  
  306. //**************************************************************************
  307. //* Class: Win32_Word11PageNumber
  308. //* Derived from: 
  309. //**************************************************************************
  310. [dynamic: ToInstance, provider("OffProv11")]
  311. class Win32_Word11PageNumber
  312. {
  313.     [key, read: ToInstance ToSubClass] uint32 Section;
  314.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  315.     [read: ToInstance ToSubClass] string PageNumbersIn;
  316.     [read: ToInstance ToSubClass] uint32 Start;
  317.     [read: ToInstance ToSubClass] boolean Restart;
  318.     [read: ToInstance ToSubClass] boolean ShowFirst;
  319. };
  320.  
  321. //**************************************************************************
  322. //* Class: Win32_Word11PageSetup
  323. //* Derived from: 
  324. //**************************************************************************
  325. [dynamic: ToInstance, provider("OffProv11")]
  326. class Win32_Word11PageSetup
  327. {
  328.     [key, read: ToInstance ToSubClass] uint32 Section;
  329.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  330.     [read: ToInstance ToSubClass] real32 FooterDistance;
  331.     [read: ToInstance ToSubClass] real32 TopMargin;
  332.     [read: ToInstance ToSubClass] real32 BottomMargin;
  333.     [read: ToInstance ToSubClass] real32 LeftMargin;
  334.     [read: ToInstance ToSubClass] real32 RightMargin;
  335.     [read: ToInstance ToSubClass] string PaperSize;
  336.     [read: ToInstance ToSubClass] real32 PageHeight;
  337.     [read: ToInstance ToSubClass] real32 PageWidth;
  338.     [read: ToInstance ToSubClass] string Orientation;
  339.     [read: ToInstance ToSubClass] string SectionStart;
  340.     [read: ToInstance ToSubClass] string VerticalAlignment;
  341.     [read: ToInstance ToSubClass] real32 CharsLine;
  342.     [read: ToInstance ToSubClass] real32 LinesPage;
  343.     [read: ToInstance ToSubClass] string Notables;
  344. };
  345.  
  346. //**************************************************************************
  347. //* Class: Win32_Word11Styles
  348. //* Derived from: 
  349. //**************************************************************************
  350. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  351. class Win32_Word11Styles
  352. {
  353.     [read: ToInstance ToSubClass] boolean AutoFormatAsYouTypeDefineStyles;
  354.     [read: ToInstance ToSubClass] boolean AutoFormatPreserveStyles;
  355.     [read: ToInstance ToSubClass] uint32 ParagraphStyleCount;
  356.     [read: ToInstance ToSubClass] uint32 CharacterStyleCount;
  357. };
  358.  
  359. //**************************************************************************
  360. //* Class: Win32_Word11ParagraphStyle
  361. //* Derived from: 
  362. //**************************************************************************
  363. [dynamic: ToInstance, provider("OffProv11")]
  364. class Win32_Word11ParagraphStyle
  365. {
  366.     [key, read: ToInstance ToSubClass] string Name;
  367.     [read: ToInstance ToSubClass] string Description;
  368.     [read: ToInstance ToSubClass] string BaseStyle;
  369.     [read: ToInstance ToSubClass] string NextStyle;
  370.     [read: ToInstance ToSubClass] boolean BuiltIn;
  371.     [read: ToInstance ToSubClass] boolean NoProofing;
  372.     [read: ToInstance ToSubClass] boolean AutomaticallyUpdate;
  373. };
  374.  
  375. //**************************************************************************
  376. //* Class: Win32_Word11CharacterStyle
  377. //* Derived from: 
  378. //**************************************************************************
  379. [dynamic: ToInstance, provider("OffProv11")]
  380. class Win32_Word11CharacterStyle
  381. {
  382.     [key, read: ToInstance ToSubClass] string Name;
  383.     [read: ToInstance ToSubClass] string Description;
  384.     [read: ToInstance ToSubClass] string BaseStyle;
  385.     [read: ToInstance ToSubClass] boolean BuiltIn;
  386. };
  387.  
  388. //**************************************************************************
  389. //* Class: Win32_Word11Settings
  390. //* Derived from: 
  391. //**************************************************************************
  392. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  393. class Win32_Word11Settings
  394. {
  395.     [read: ToInstance ToSubClass] boolean BackgroundSave;
  396.     [read: ToInstance ToSubClass] boolean AllowDragAndDrop;
  397.     [read: ToInstance ToSubClass] boolean CreateBackup;
  398.     [read: ToInstance ToSubClass] boolean AutoHyphenation;
  399.     [read: ToInstance ToSubClass] uint32 SaveInterval;
  400.     [read: ToInstance ToSubClass] boolean Pagination;
  401.     [read: ToInstance ToSubClass] boolean ConfirmConversions;
  402.     [read: ToInstance ToSubClass] string DefaultFilePath;
  403.     [read: ToInstance ToSubClass] string DefaultSaveFormat;
  404.     [read: ToInstance ToSubClass] boolean DisplayAutoCompleteTips;
  405.     [read: ToInstance ToSubClass] boolean DisplayHorizontalScrollBar;
  406.     [read: ToInstance ToSubClass] boolean DisplayRecentFiles;
  407.     [read: ToInstance ToSubClass] uint32 RecentFilesMaximum;
  408.     [read: ToInstance ToSubClass] boolean DisplayRulers;
  409.     [read: ToInstance ToSubClass] boolean DisplayScreenTips;
  410.     [read: ToInstance ToSubClass] boolean DisplayScrollBars;
  411.     [read: ToInstance ToSubClass] boolean DisplayStatusBar;
  412.     [read: ToInstance ToSubClass] string MeasurementUnits;
  413.     [read: ToInstance ToSubClass] uint32 MinimumFontSize;
  414.     [read: ToInstance ToSubClass] boolean Overtype;
  415.     [read: ToInstance ToSubClass] boolean PrintFormsData;
  416.     [read: ToInstance ToSubClass] boolean PrintPostScriptOverText;
  417.     [read: ToInstance ToSubClass] boolean PrintRevisions;
  418.     [read: ToInstance ToSubClass] boolean SavePropertiesPrompt;
  419.     [read: ToInstance ToSubClass] boolean SaveNormalPrompt;
  420.     [read: ToInstance ToSubClass] boolean EnableSound;
  421.     [read: ToInstance ToSubClass] boolean SaveFormsData;
  422.     [read: ToInstance ToSubClass] boolean ShowAll;
  423.     [read: ToInstance ToSubClass] boolean AnimateScreenMovements;
  424.     [read: ToInstance ToSubClass] boolean ShowAnimation;
  425.     [read: ToInstance ToSubClass] boolean BlueScreen;
  426.     [read: ToInstance ToSubClass] boolean ShowBookmarks;
  427.     [read: ToInstance ToSubClass] boolean ShowMainTextLayer;
  428.     [read: ToInstance ToSubClass] boolean ShowDrawings;
  429.     [read: ToInstance ToSubClass] boolean ShowFieldCodes;
  430.     [read: ToInstance ToSubClass] string FieldShading;
  431.     [read: ToInstance ToSubClass] boolean ShowHiddenText;
  432.     [read: ToInstance ToSubClass] boolean ShowHighlight;
  433.     [read: ToInstance ToSubClass] boolean ShowHyphens;
  434.     [read: ToInstance ToSubClass] boolean ShowObjectAnchors;
  435.     [read: ToInstance ToSubClass] boolean ShowParagraphs;
  436.     [read: ToInstance ToSubClass] boolean ShowRevisions;
  437.     [read: ToInstance ToSubClass] boolean ShowSpaces;
  438.     [read: ToInstance ToSubClass] boolean ShowSummary;
  439.     [read: ToInstance ToSubClass] boolean ShowTabs;
  440.     [read: ToInstance ToSubClass] boolean TableGridlines;
  441.     [read: ToInstance ToSubClass] boolean ShowTextBoundaries;
  442.     [read: ToInstance ToSubClass] boolean TabIndentKey;
  443.     [read: ToInstance ToSubClass] boolean TrackRevisions;
  444.     [read: ToInstance ToSubClass] boolean ReplaceSelection;
  445.     [read: ToInstance ToSubClass] boolean INSKeyForPaste;
  446.     [read: ToInstance ToSubClass] boolean SmartCutPaste;
  447. };
  448.  
  449. //**************************************************************************
  450. //* Class: Win32_Word11AlternateStartupFileLocation
  451. //* Derived from: 
  452. //**************************************************************************
  453. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  454. class Win32_Word11AlternateStartupFileLocation
  455. {
  456.     [read: ToInstance ToSubClass] string Path;
  457. };
  458.  
  459.  
  460. //**************************************************************************
  461. //* Class: Win32_Word11StartupFileLocation
  462. //* Derived from: 
  463. //**************************************************************************
  464. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  465. class Win32_Word11StartupFileLocation
  466. {
  467.     [read: ToInstance ToSubClass] string Path;
  468. };
  469.  
  470. //**************************************************************************
  471. //* Class: Win32_Word11DefaultFileLocation
  472. //* Derived from: 
  473. //**************************************************************************
  474. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  475. class Win32_Word11DefaultFileLocation
  476. {
  477.     [read: ToInstance ToSubClass] string Path;
  478. };
  479.  
  480. //**************************************************************************
  481. //* Class: Win32_Word11Tables
  482. //* Derived from: 
  483. //**************************************************************************
  484. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  485. class Win32_Word11Tables
  486. {
  487.     [read: ToInstance ToSubClass] uint32 TableCount;
  488. };
  489.  
  490. //**************************************************************************
  491. //* Class: Win32_Word11SelectedTable
  492. //* Derived from: 
  493. //**************************************************************************
  494. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  495. class Win32_Word11SelectedTable
  496. {
  497.     [read: ToInstance ToSubClass] uint32 Page;
  498.     [read: ToInstance ToSubClass] uint32 Section;
  499.     [read: ToInstance ToSubClass] uint32 Rows;
  500.     [read: ToInstance ToSubClass] uint32 Columns;
  501.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  502.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  503.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  504.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  505.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  506.     [read: ToInstance ToSubClass] uint32 Tables;
  507.     [read: ToInstance ToSubClass] string PreferredWidthType;
  508.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  509.     [read: ToInstance ToSubClass] real32 Spacing;
  510.     [read: ToInstance ToSubClass] real32 TopMargin;
  511.     [read: ToInstance ToSubClass] real32 BottomMargin;
  512.     [read: ToInstance ToSubClass] real32 LeftMargin;
  513.     [read: ToInstance ToSubClass] real32 RightMargin;
  514.     [read: ToInstance ToSubClass] string RowAlignment;
  515.     [read: ToInstance ToSubClass] string RowHeightRule;
  516.     [read: ToInstance ToSubClass] real32 LeftIndent;
  517.     [read: ToInstance ToSubClass] boolean Uniform;
  518. };
  519.  
  520. //**************************************************************************
  521. //* Class: Win32_Word11Table
  522. //* Derived from: 
  523. //**************************************************************************
  524. [dynamic: ToInstance, provider("OffProv11")]
  525. class Win32_Word11Table
  526. {
  527.     [key, read: ToInstance ToSubClass] uint32 Index;
  528.     [read: ToInstance ToSubClass] uint32 Page;
  529.     [read: ToInstance ToSubClass] uint32 Section;
  530.     [read: ToInstance ToSubClass] uint32 Rows;
  531.     [read: ToInstance ToSubClass] uint32 Columns;
  532.     [read: ToInstance ToSubClass] boolean NestedTables;
  533. };
  534.  
  535.  
  536. //**************************************************************************
  537. //* Class: Win32_ExcelSummary
  538. //* Derived from:
  539. //**************************************************************************
  540. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  541. class Win32_ExcelSummary
  542. {
  543.     [read: ToInstance ToSubClass] string Name;
  544.     [read: ToInstance ToSubClass] string Version;
  545.     [read: ToInstance ToSubClass] string Build;
  546.     [read: ToInstance ToSubClass] string ProductID;
  547.     [read: ToInstance ToSubClass] string Path;
  548.     [read: ToInstance ToSubClass] string Language;
  549.     [read: ToInstance ToSubClass] uint32 WorkbookCount;
  550. };
  551.  
  552. //**************************************************************************
  553. //* Class: Win32_ExcelWorkbook
  554. //* Derived from: 
  555. //**************************************************************************
  556. [dynamic: ToInstance, provider("OffProv11")]
  557. class Win32_ExcelWorkbook
  558. {
  559.     [key, read: ToInstance ToSubClass] string Name;
  560.     [read: ToInstance ToSubClass] string Path;
  561.     [read: ToInstance ToSubClass] real32 Size;
  562.     [read: ToInstance ToSubClass] datetime CreateDate;
  563. };
  564.  
  565. //**************************************************************************
  566. //* Class: Win32_ExcelActiveWorkbook
  567. //* Derived from:
  568. //**************************************************************************
  569. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  570. class Win32_ExcelActiveWorkbook
  571. {
  572.     [read: ToInstance ToSubClass] string Name;
  573.     [read: ToInstance ToSubClass] string Path;
  574.     [read: ToInstance ToSubClass] real32 Size;
  575.     [read: ToInstance ToSubClass] string Format;
  576.     [read: ToInstance ToSubClass] datetime CreateDate;
  577.     [read: ToInstance ToSubClass] string Author;
  578.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  579.     [read: ToInstance ToSubClass] string LastAuthor;
  580.     [read: ToInstance ToSubClass] string ActiveSheet;
  581.     [read: ToInstance ToSubClass] string ActiveWindowType;
  582.     [read: ToInstance ToSubClass] uint32 ActiveWindowZoom;
  583.     [read: ToInstance ToSubClass] uint32 SheetCount;
  584. };
  585.  
  586. //**************************************************************************
  587. //* Class: Win32_ExcelActiveWorkbookNotable
  588. //* Derived from: 
  589. //**************************************************************************
  590. [dynamic: ToInstance, provider("OffProv11")]
  591. class Win32_ExcelActiveWorkbookNotable
  592. {
  593.     [key, read: ToInstance ToSubClass] string Text;
  594. };
  595.  
  596. //**************************************************************************
  597. //* Class: Win32_ExcelSheet
  598. //* Derived from: 
  599. //**************************************************************************
  600. [dynamic: ToInstance, provider("OffProv11")]
  601. class Win32_ExcelSheet
  602. {
  603.     [key, read: ToInstance ToSubClass] string Name;
  604.     [read: ToInstance ToSubClass] string Type;
  605.     [read: ToInstance ToSubClass] uint32 Cells;
  606.     [read: ToInstance ToSubClass] uint32 Rows;
  607.     [read: ToInstance ToSubClass] uint32 Columns;
  608. };
  609.  
  610. //**************************************************************************
  611. //* Class: Win32_ExcelAddIns
  612. //* Derived from:
  613. //**************************************************************************
  614. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  615. class Win32_ExcelAddIns
  616. {
  617.     [read: ToInstance ToSubClass] uint32 AddInCount;
  618. };
  619.  
  620. //**************************************************************************
  621. //* Class: Win32_ExcelAddIn
  622. //* Derived from:
  623. //**************************************************************************
  624. [dynamic: ToInstance, provider("OffProv11")]
  625. class Win32_ExcelAddIn
  626. {
  627.     [key, read: ToInstance ToSubClass] string Name;
  628.     [read: ToInstance ToSubClass] string Path;
  629.     [read: ToInstance ToSubClass] boolean Installed;
  630. };
  631.  
  632. //**************************************************************************
  633. //* Class: Win32_ExcelCharts
  634. //* Derived from:
  635. //**************************************************************************
  636. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  637. class Win32_ExcelCharts
  638. {
  639.     [read: ToInstance ToSubClass] string ActiveChart;
  640.     [read: ToInstance ToSubClass] uint32 ChartCount;
  641. };
  642.  
  643. //**************************************************************************
  644. //* Class: Win32_ExcelChart
  645. //* Derived from:
  646. //**************************************************************************
  647. [dynamic: ToInstance, provider("OffProv11")]
  648. class Win32_ExcelChart
  649. {
  650.     [key, read: ToInstance ToSubClass] string Name;
  651. };
  652.  
  653. //**************************************************************************
  654. //* Class: Win32_ExcelComAddins
  655. //* Derived from: 
  656. //**************************************************************************
  657. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  658. class Win32_ExcelComAddins
  659. {
  660.     [read: ToInstance ToSubClass] uint32 AddInCount;
  661. };
  662.  
  663. //**************************************************************************
  664. //* Class: Win32_ExcelComAddin
  665. //* Derived from: 
  666. //**************************************************************************
  667. [dynamic: ToInstance, provider("OffProv11")]
  668. class Win32_ExcelComAddin
  669. {
  670.     [key, read: ToInstance ToSubClass] string Name;
  671.     [read: ToInstance ToSubClass] string Installed;
  672.     [read: ToInstance ToSubClass] string Creator;
  673.     [read: ToInstance ToSubClass] string Guid;
  674.     [read: ToInstance ToSubClass] string Path;
  675. };
  676.  
  677. //**************************************************************************
  678. //* Class: Win32_WordComAddins
  679. //* Derived from: 
  680. //**************************************************************************
  681. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  682. class Win32_WordComAddins
  683. {
  684.     [read: ToInstance ToSubClass] uint32 AddInCount;
  685. };
  686.  
  687. //**************************************************************************
  688. //* Class: Win32_WordComAddin
  689. //* Derived from: 
  690. //**************************************************************************
  691. [dynamic: ToInstance, provider("OffProv11")]
  692. class Win32_WordComAddin
  693. {
  694.     [key, read: ToInstance ToSubClass] string Name;
  695.     [read: ToInstance ToSubClass] string Installed;
  696.     [read: ToInstance ToSubClass] string Creator;
  697.     [read: ToInstance ToSubClass] string Guid;
  698.     [read: ToInstance ToSubClass] string Path;
  699. };
  700.  
  701. //**************************************************************************
  702. //* Class: Win32_PowerPointSummary
  703. //* Derived from:
  704. //**************************************************************************
  705. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  706. class Win32_PowerPointSummary
  707. {
  708.     [read: ToInstance ToSubClass] string Name;
  709.     [read: ToInstance ToSubClass] string Version;
  710.     [read: ToInstance ToSubClass] string Build;
  711.     [read: ToInstance ToSubClass] string ProductID;
  712.     [read: ToInstance ToSubClass] string Path;
  713.     [read: ToInstance ToSubClass] string Language;
  714.     [read: ToInstance ToSubClass] uint32 PresentationCount;
  715. };
  716.  
  717. //**************************************************************************
  718. //* Class: Win32_PowerPointPresentation
  719. //* Derived from: 
  720. //**************************************************************************
  721. [dynamic: ToInstance, provider("OffProv11")]
  722. class Win32_PowerPointPresentation
  723. {
  724.     [key, read: ToInstance ToSubClass] string Name;
  725.     [read: ToInstance ToSubClass] string Path;
  726.     [read: ToInstance ToSubClass] real32 Size;
  727.     [read: ToInstance ToSubClass] datetime CreateDate;
  728. };
  729.  
  730. //**************************************************************************
  731. //* Class: Win32_PowerPointActivePresentation
  732. //* Derived from: 
  733. //**************************************************************************
  734. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  735. class Win32_PowerPointActivePresentation
  736. {
  737.     [read: ToInstance ToSubClass] string Name;
  738.     [read: ToInstance ToSubClass] string Path;
  739.     [read: ToInstance ToSubClass] real32 Size;
  740.     [read: ToInstance ToSubClass] datetime CreateDate;
  741.     [read: ToInstance ToSubClass] string Author;
  742.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  743.     [read: ToInstance ToSubClass] string LastAuthor;
  744.     [read: ToInstance ToSubClass] string Template;
  745.     [read: ToInstance ToSubClass] uint32 Slides;
  746.     [read: ToInstance ToSubClass] uint32 Words;
  747.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  748.     [read: ToInstance ToSubClass] string View;
  749. };
  750.  
  751. //**************************************************************************
  752. //* Class: Win32_OutlookSummary
  753. //* Derived from:
  754. //**************************************************************************
  755. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  756. class Win32_OutlookSummary
  757. {
  758.     [read: ToInstance ToSubClass] string Name;
  759.     [read: ToInstance ToSubClass] string Version;
  760.     [read: ToInstance ToSubClass] string Build;
  761.     [read: ToInstance ToSubClass] string ProductID;
  762.     [read: ToInstance ToSubClass] string Language;
  763.     [read: ToInstance ToSubClass] string User;
  764.     [read: ToInstance ToSubClass] string Folder;
  765.     [read: ToInstance ToSubClass] string Item;
  766.     [read: ToInstance ToSubClass] string Path;
  767.     [read: ToInstance ToSubClass] string SystemLanguage;
  768.     [read: ToInstance ToSubClass] string MailSupport;
  769. };
  770.  
  771. //**************************************************************************
  772. //* Class: Win32_AccessSummary
  773. //* Derived from:
  774. //**************************************************************************
  775. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  776. class Win32_AccessSummary
  777. {
  778.     [read: ToInstance ToSubClass] string Name;
  779.     [read: ToInstance ToSubClass] string Version;
  780.     [read: ToInstance ToSubClass] string Build;
  781.     [read: ToInstance ToSubClass] string ProductID;
  782.     [read: ToInstance ToSubClass] string Path;
  783.     [read: ToInstance ToSubClass] string Language;
  784.     [read: ToInstance ToSubClass] string ADOVersion;
  785.     [read: ToInstance ToSubClass] string VBAVersion;
  786.     [read: ToInstance ToSubClass] string References;
  787. };
  788.  
  789. //**************************************************************************
  790. //* Class: Win32_AccessDatabase
  791. //* Derived from:
  792. //**************************************************************************
  793. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  794. class Win32_AccessDatabase
  795. {
  796.     [read: ToInstance ToSubClass] string Name;
  797.     [read: ToInstance ToSubClass] string Path;
  798.     [read: ToInstance ToSubClass] real32 Size;
  799.     [read: ToInstance ToSubClass] datetime CreateDate;
  800.     [read: ToInstance ToSubClass] string User;
  801.     [read: ToInstance ToSubClass] string JetVersion;
  802. };
  803.  
  804. //**************************************************************************
  805. //* Class: Win32_AccessProject
  806. //* Derived from:
  807. //**************************************************************************
  808. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  809. class Win32_AccessProject
  810. {
  811.     [read: ToInstance ToSubClass] string Name;
  812.     [read: ToInstance ToSubClass] string Path;
  813.     [read: ToInstance ToSubClass] real32 Size;
  814.     [read: ToInstance ToSubClass] datetime CreateDate;
  815.     [read: ToInstance ToSubClass] string ServerName;
  816.     [read: ToInstance ToSubClass] string DatabaseName;
  817.     [read: ToInstance ToSubClass] string LoginName;
  818.     [read: ToInstance ToSubClass] string DBMSName;
  819.     [read: ToInstance ToSubClass] string DBMSVersion;
  820.     [read: ToInstance ToSubClass] string DSNName;
  821. };
  822.  
  823. //**************************************************************************
  824. //* Class: Win32_PublisherSummary
  825. //* Derived from: 
  826. //**************************************************************************
  827. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  828. class Win32_PublisherSummary
  829. {
  830.     [read: ToInstance ToSubClass] string DisplayName;
  831.     [read: ToInstance ToSubClass] string RegOwner;
  832.     [read: ToInstance ToSubClass] string RegCompany;
  833.     [read: ToInstance ToSubClass] string ProductID;
  834.     [read: ToInstance ToSubClass] string LocalPackage;
  835.     [read: ToInstance ToSubClass] string DisplayVersion;
  836.     [read: ToInstance ToSubClass] string InstallDate;
  837.     [read: ToInstance ToSubClass] string InstallLocation;
  838.     [read: ToInstance ToSubClass] string InstallSource;
  839.     [read: ToInstance ToSubClass] string Language;
  840.     [read: ToInstance ToSubClass] string HelpLink;
  841.     [read: ToInstance ToSubClass] string URLInfoAbout;
  842.     [read: ToInstance ToSubClass] string URLUpdateInfo;
  843.     [read: ToInstance ToSubClass] string SystemLanguage;
  844.     [read: ToInstance ToSubClass] string ActivePrinter;
  845.  
  846. };
  847.  
  848. //**************************************************************************
  849. //* Class: Win32_FrontPageSummary
  850. //* Derived from: 
  851. //**************************************************************************
  852. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  853. class Win32_FrontPageSummary
  854. {
  855.     [read: ToInstance ToSubClass] string Name;
  856.     [read: ToInstance ToSubClass] string Version;
  857.     [read: ToInstance ToSubClass] string Build;
  858.     [read: ToInstance ToSubClass] string ProductID;
  859.     [read: ToInstance ToSubClass] string Path;
  860.     [read: ToInstance ToSubClass] string Language;
  861. };
  862.  
  863. //**************************************************************************
  864. //* Class: Win32_FrontPageActiveWeb
  865. //* Derived from: 
  866. //**************************************************************************
  867. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  868. class Win32_FrontPageActiveWeb
  869. {
  870.     [read: ToInstance ToSubClass] string Name;
  871.     [read: ToInstance ToSubClass] uint32 PageCount;
  872. };
  873.  
  874. //**************************************************************************
  875. //* Class: Win32_FrontPageWebProperty
  876. //* Derived from: 
  877. //**************************************************************************
  878. [dynamic: ToInstance, provider("OffProv11")]
  879. class Win32_FrontPageWebProperty
  880. {
  881.     [key, read: ToInstance ToSubClass] string Name;
  882.     [read: ToInstance ToSubClass] string Value;
  883. };
  884.  
  885. //**************************************************************************
  886. //* Class: Win32_FrontPageActivePage
  887. //* Derived from: 
  888. //**************************************************************************
  889. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  890. class Win32_FrontPageActivePage
  891. {
  892.     [read: ToInstance ToSubClass] string Name;
  893. };
  894.  
  895. //**************************************************************************
  896. //* Class: Win32_FrontPagePageProperty
  897. //* Derived from: 
  898. //**************************************************************************
  899. [dynamic: ToInstance, provider("OffProv11")]
  900. class Win32_FrontPagePageProperty
  901. {
  902.     [key, read: ToInstance ToSubClass] string Name;
  903.     [read: ToInstance ToSubClass] string Value;
  904. };
  905.  
  906. //**************************************************************************
  907. //* Class: Win32_FrontPageAddIns
  908. //* Derived from: 
  909. //**************************************************************************
  910. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  911. class Win32_FrontPageAddIns
  912. {
  913.     [read: ToInstance ToSubClass] uint32 AddInCount;
  914. };
  915.  
  916. //**************************************************************************
  917. //* Class: Win32_FrontPageAddIn
  918. //* Derived from: 
  919. //**************************************************************************
  920. [dynamic: ToInstance, provider("OffProv11")]
  921. class Win32_FrontPageAddIn
  922. {
  923.     [key, read: ToInstance ToSubClass] string Name;
  924.     [read: ToInstance ToSubClass] string Installed;
  925.     [read: ToInstance ToSubClass] string Creator;
  926.     [read: ToInstance ToSubClass] string Guid;
  927. };
  928.  
  929. //**************************************************************************
  930. //* Class: Win32_FrontPageThemes
  931. //* Derived from: 
  932. //**************************************************************************
  933. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  934. class Win32_FrontPageThemes
  935. {
  936.     [read: ToInstance ToSubClass] uint32 ThemeCount;
  937. };
  938.  
  939. //**************************************************************************
  940. //* Class: Win32_FrontPageTheme
  941. //* Derived from: 
  942. //**************************************************************************
  943. [dynamic: ToInstance, provider("OffProv11")]
  944. class Win32_FrontPageTheme
  945. {
  946.     [key, read: ToInstance ToSubClass] string Name;
  947. };
  948.  
  949. //**************************************************************************
  950. //* Class: Win32_WebConnectionError
  951. //* Derived from: 
  952. //**************************************************************************
  953. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  954. class Win32_WebConnectionError
  955. {
  956.     [read: ToInstance ToSubClass] string MessageFirstLine;
  957.     [read: ToInstance ToSubClass] string Timestamp;
  958. };
  959.  
  960. //**************************************************************************
  961. //* Class: Win32_WebConnectionErrorMessage
  962. //* Derived from: 
  963. //**************************************************************************
  964. [dynamic: ToInstance, provider("OffProv11")]
  965. class Win32_WebConnectionErrorMessage
  966. {
  967.     [key, read: ToInstance ToSubClass] string AdditionalLine;
  968. };
  969.  
  970. //**************************************************************************
  971. //* Class: Win32_WebConnectionErrorText
  972. //* Derived from: 
  973. //**************************************************************************
  974. [dynamic: ToInstance, provider("OffProv11")]
  975. class Win32_WebConnectionErrorText
  976. {
  977.     [key, read: ToInstance ToSubClass] string Text;
  978. };
  979.  
  980. //**************************************************************************
  981. //* Class: Win32_ServerExtension
  982. //* Derived from:
  983. //**************************************************************************
  984. [dynamic: ToInstance, provider("OffProv11")]
  985. class Win32_ServerExtension
  986. {
  987.     [read: ToInstance ToSubClass] string ServerType;
  988.     [key, read: ToInstance ToSubClass] string PortNumber;
  989.     [read: ToInstance ToSubClass] string Version;
  990.     [read: ToInstance ToSubClass] string Path;
  991. };
  992.  
  993.  
  994. //**************************************************************************
  995. //* Class: Win32_Language
  996. //* Derived from:
  997. //**************************************************************************
  998. [dynamic: ToInstance, provider("OffProv11")]
  999. class Win32_Language
  1000. {
  1001.     [read: ToInstance ToSubClass]      uint32 UILang;
  1002.     [read: ToInstance ToSubClass]      uint32 HelpLang;
  1003.     [read: ToInstance ToSubClass]      uint32 InstallLang;
  1004.     [key, read: ToInstance ToSubClass] uint32 SkuLang;
  1005.     [read: ToInstance ToSubClass]      uint32 WebLocale;
  1006. };
  1007.  
  1008.  
  1009.  
  1010. //**************************************************************************
  1011. //* Class: Win32_Transport
  1012. //* Derived from: 
  1013. //**************************************************************************
  1014. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1015. class Win32_Transport
  1016. {
  1017.     [read: ToInstance ToSubClass] boolean ProviderForInternetPublishing;
  1018.     [read: ToInstance ToSubClass] boolean OfficeInternetPublishing;
  1019. };
  1020.  
  1021. //**************************************************************************
  1022. //* Class: Win32_OdbcCoreComponent
  1023. //* Derived from:
  1024. //**************************************************************************
  1025. [dynamic: ToInstance, provider("OffProv11")]
  1026. class Win32_OdbcCoreComponent
  1027. {
  1028.     [key, read: ToInstance ToSubClass] string Description;
  1029.     [read: ToInstance ToSubClass] string Version;
  1030.     [read: ToInstance ToSubClass] string File;
  1031. };
  1032.  
  1033. //**************************************************************************
  1034. //* Class: Win32_OdbcDriver
  1035. //* Derived from:
  1036. //**************************************************************************
  1037. [dynamic: ToInstance, provider("OffProv11")]
  1038. class Win32_OdbcDriver
  1039. {
  1040.     [key, read: ToInstance ToSubClass] string Name;
  1041.     [read: ToInstance ToSubClass] string File;
  1042.     [read: ToInstance ToSubClass] datetime Date;
  1043.     [read: ToInstance ToSubClass] string Version;
  1044. };
  1045.  
  1046. //**************************************************************************
  1047. //* Class: Win32_OleDbProvider
  1048. //* Derived from:
  1049. //**************************************************************************
  1050. [dynamic: ToInstance, provider("OffProv11")]
  1051. class Win32_OleDbProvider
  1052. {
  1053.     [key, read: ToInstance ToSubClass] string Name;
  1054.     [read: ToInstance ToSubClass] string Version;
  1055. };
  1056.  
  1057.  
  1058.  
  1059. //**************************************************************************
  1060. //* Class: Win32_OfficeWatsonLog
  1061. //* Derived from:
  1062. //**************************************************************************
  1063. [dynamic: ToInstance, provider("OffProv11")]
  1064. class Win32_OfficeWatsonLog
  1065. {
  1066.     [key, read: ToInstance ToSubClass] string Event;
  1067.     [read: ToInstance ToSubClass] string Category;
  1068.     [read: ToInstance ToSubClass] string BucketID;
  1069.     [read: ToInstance ToSubClass] string BucketTable;
  1070.     [read: ToInstance ToSubClass] string AppName;
  1071.     [read: ToInstance ToSubClass] string AppVersion;
  1072.     [read: ToInstance ToSubClass] string AppStamp;
  1073.     [read: ToInstance ToSubClass] string ModuleName;
  1074.     [read: ToInstance ToSubClass] string ModuleVersion;
  1075.     [read: ToInstance ToSubClass] string ModuleStamp;
  1076.     [read: ToInstance ToSubClass] string Debug;
  1077.     [read: ToInstance ToSubClass] string Offset;
  1078.     [read: ToInstance ToSubClass] datetime Date;
  1079. };
  1080.  
  1081. //**************************************************************************
  1082. //* Class: Win32_JetCoreComponents
  1083. //* Derived from:
  1084. //**************************************************************************
  1085. [dynamic: ToInstance, provider("OffProv11")]
  1086. class Win32_JetCoreComponents
  1087. {
  1088.     [key, read: ToInstance ToSubClass] string Description;
  1089.     [read: ToInstance ToSubClass] string Path;
  1090.     [read: ToInstance ToSubClass] string Version;
  1091. };
  1092.  
  1093. //**************************************************************************
  1094. //* Class: Win32_ADOCoreComponents
  1095. //* Derived from:
  1096. //**************************************************************************
  1097. [dynamic: ToInstance, provider("OffProv11")]
  1098. class Win32_ADOCoreComponents
  1099. {
  1100.     [key, read: ToInstance ToSubClass] string Description;
  1101.     [read: ToInstance ToSubClass] string Path;
  1102.     [read: ToInstance ToSubClass] string Version;
  1103. };
  1104.  
  1105. //**************************************************************************
  1106. //* Class: Win32_RDOCoreComponents
  1107. //* Derived from:
  1108. //**************************************************************************
  1109. [dynamic: ToInstance, provider("OffProv11")]
  1110. class Win32_RDOCoreComponents
  1111. {
  1112.     [key, read: ToInstance ToSubClass] string Description;
  1113.     [read: ToInstance ToSubClass] string Path;
  1114.     [read: ToInstance ToSubClass] string Version;
  1115. };
  1116.  
  1117.  
  1118. //**************************************************************************
  1119. //* Class: Win32_Excel11AlternateStartupFileLoc
  1120. //* Derived from: 
  1121. //**************************************************************************
  1122. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1123. class Win32_Excel11AlternateStartupFileLoc
  1124. {
  1125.     [read: ToInstance ToSubClass] string Path;
  1126. };
  1127.  
  1128.  
  1129. //**************************************************************************
  1130. //* Class: Win32_Excel11DefaultFileLoc
  1131. //* Derived from: 
  1132. //**************************************************************************
  1133. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1134. class Win32_Excel11DefaultFileLoc
  1135. {
  1136.     [read: ToInstance ToSubClass] string Path;
  1137. };
  1138.  
  1139. //**************************************************************************
  1140. //* Class: Win32_Excel11StartupFolder
  1141. //* Derived from: 
  1142. //**************************************************************************
  1143. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1144. class Win32_Excel11StartupFolder
  1145. {
  1146.     [read: ToInstance ToSubClass] string Path;
  1147. };
  1148.  
  1149. //**************************************************************************
  1150. //* Class: Win32_Access11AlternateStartupFileLoc
  1151. //* Derived from: 
  1152. //**************************************************************************
  1153. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1154. class Win32_Access11AlternateStartupFileLoc
  1155. {
  1156.     [read: ToInstance ToSubClass] string Path;
  1157. };
  1158.  
  1159.  
  1160. //**************************************************************************
  1161. //* Class: Win32_Access11DefaultFileLoc
  1162. //* Derived from: 
  1163. //**************************************************************************
  1164. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1165. class Win32_Access11DefaultFileLoc
  1166. {
  1167.     [read: ToInstance ToSubClass] string Path;
  1168. };
  1169.  
  1170. //**************************************************************************
  1171. //* Class: Win32_Access11StartupFolder
  1172. //* Derived from: 
  1173. //**************************************************************************
  1174. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1175. class Win32_Access11StartupFolder
  1176. {
  1177.     [read: ToInstance ToSubClass] string Path;
  1178. };
  1179.  
  1180. //**************************************************************************
  1181. //* Class: Win32_Access11JetComponents
  1182. //* Derived from:
  1183. //**************************************************************************
  1184. [dynamic: ToInstance, provider("OffProv11")]
  1185. class Win32_Access11JetComponents
  1186. {
  1187.     [key, read: ToInstance ToSubClass] string Description;
  1188.     [read: ToInstance ToSubClass] string Path;
  1189.     [read: ToInstance ToSubClass] string Version;
  1190. };
  1191.  
  1192. //**************************************************************************
  1193. //* Class: Win32_PowerPoint11SelectedTable
  1194. //* Derived from: 
  1195. //**************************************************************************
  1196. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1197. class Win32_PowerPoint11SelectedTable
  1198. {
  1199.     [read: ToInstance ToSubClass] uint32 Page;
  1200.     [read: ToInstance ToSubClass] uint32 Section;
  1201.     [read: ToInstance ToSubClass] uint32 Rows;
  1202.     [read: ToInstance ToSubClass] uint32 Columns;
  1203.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  1204.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  1205.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  1206.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  1207.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  1208.     [read: ToInstance ToSubClass] uint32 Tables;
  1209.     [read: ToInstance ToSubClass] string PreferredWidthType;
  1210.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  1211.     [read: ToInstance ToSubClass] real32 Spacing;
  1212.     [read: ToInstance ToSubClass] real32 TopMargin;
  1213.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1214.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1215.     [read: ToInstance ToSubClass] real32 RightMargin;
  1216.     [read: ToInstance ToSubClass] string RowAlignment;
  1217.     [read: ToInstance ToSubClass] string RowHeightRule;
  1218.     [read: ToInstance ToSubClass] real32 LeftIndent;
  1219.     [read: ToInstance ToSubClass] boolean Uniform;
  1220. };
  1221.  
  1222. //**************************************************************************
  1223. //* Class: Win32_PowerPoint11Table
  1224. //* Derived from: 
  1225. //**************************************************************************
  1226. [dynamic: ToInstance, provider("OffProv11")]
  1227. class Win32_PowerPoint11Table
  1228. {
  1229.     [key, read: ToInstance ToSubClass] uint32 Index;
  1230.     [read: ToInstance ToSubClass] uint32 Page;
  1231.     [read: ToInstance ToSubClass] uint32 Section;
  1232.     [read: ToInstance ToSubClass] uint32 Rows;
  1233.     [read: ToInstance ToSubClass] uint32 Columns;
  1234.     [read: ToInstance ToSubClass] boolean NestedTables;
  1235. };
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241. //**************************************************************************
  1242. //* Class: Win32_PowerPoint11Tables
  1243. //* Derived from: 
  1244. //**************************************************************************
  1245. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1246. class Win32_PowerPoint11Tables
  1247. {
  1248.     [read: ToInstance ToSubClass] uint32 TableCount;
  1249. };
  1250.  
  1251.  
  1252.  
  1253. //**************************************************************************
  1254. //* Class: Win32_PowerPoint11PageNumber
  1255. //* Derived from: 
  1256. //**************************************************************************
  1257. [dynamic: ToInstance, provider("OffProv11")]
  1258. class Win32_PowerPoint11PageNumber
  1259. {
  1260.     [key, read: ToInstance ToSubClass] uint32 Section;
  1261.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  1262.     [read: ToInstance ToSubClass] string PageNumbersIn;
  1263.     [read: ToInstance ToSubClass] uint32 Start;
  1264.     [read: ToInstance ToSubClass] boolean Restart;
  1265.     [read: ToInstance ToSubClass] boolean ShowFirst;
  1266. };
  1267.  
  1268.  
  1269. //**************************************************************************
  1270. //* Class: Win32_PowerPoint11Hyperlinks
  1271. //* Derived from: 
  1272. //**************************************************************************
  1273. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1274. class Win32_PowerPoint11Hyperlinks
  1275. {
  1276.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  1277. };
  1278.  
  1279. //**************************************************************************
  1280. //* Class: Win32_PowerPoint11Hyperlink
  1281. //* Derived from: 
  1282. //**************************************************************************
  1283. [dynamic: ToInstance, provider("OffProv11")]
  1284. class Win32_PowerPoint11Hyperlink
  1285. {
  1286.     [key, read: ToInstance ToSubClass] uint32 Index;
  1287.     [read: ToInstance ToSubClass] string Target;
  1288.     [read: ToInstance ToSubClass] string Address;
  1289.     [read: ToInstance ToSubClass] string TextToDisplay;
  1290.     [read: ToInstance ToSubClass] string Type;
  1291.     [read: ToInstance ToSubClass] string Subaddress;
  1292.     [read: ToInstance ToSubClass] string ScreenTip;
  1293.     [read: ToInstance ToSubClass] string Name;
  1294. };
  1295.  
  1296.  
  1297. //**************************************************************************
  1298. //* Class: Win32_PowerPoint11Fonts
  1299. //* Derived from: 
  1300. //**************************************************************************
  1301. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1302. class Win32_PowerPoint11Fonts
  1303. {
  1304.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  1305.     [read: ToInstance ToSubClass] uint32 FontCount;
  1306. };
  1307.  
  1308. //**************************************************************************
  1309. //* Class: Win32_PowerPoint11Font
  1310. //* Derived from: 
  1311. //**************************************************************************
  1312. [dynamic: ToInstance, provider("OffProv11")]
  1313. class Win32_PowerPoint11Font
  1314. {
  1315.     [key, read: ToInstance ToSubClass] string Name;
  1316. };
  1317.  
  1318.  
  1319. //**************************************************************************
  1320. //* Class: Win32_PowerPoint11ComAddins
  1321. //* Derived from: 
  1322. //**************************************************************************
  1323. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1324. class Win32_PowerPoint11ComAddins
  1325. {
  1326.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1327. };
  1328.  
  1329. //**************************************************************************
  1330. //* Class: Win32_PowerPoint11ComAddin
  1331. //* Derived from: 
  1332. //**************************************************************************
  1333. [dynamic: ToInstance, provider("OffProv11")]
  1334. class Win32_PowerPoint11ComAddin
  1335. {
  1336.     [key, read: ToInstance ToSubClass] string Name;
  1337.     [read: ToInstance ToSubClass] string Installed;
  1338.     [read: ToInstance ToSubClass] string Creator;
  1339.     [read: ToInstance ToSubClass] string Guid;
  1340.     [read: ToInstance ToSubClass] string Path;
  1341. };
  1342.  
  1343.  
  1344. //**************************************************************************
  1345. //* Class: Win32_PowerPoint11AlternateStartupLoc
  1346. //* Derived from: 
  1347. //**************************************************************************
  1348. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1349. class Win32_PowerPoint11AlternateStartupLoc
  1350. {
  1351.     [read: ToInstance ToSubClass] string Path;
  1352. };
  1353.  
  1354.  
  1355. //**************************************************************************
  1356. //* Class: Win32_PowerPoint11DefaultFileLoc
  1357. //* Derived from: 
  1358. //**************************************************************************
  1359. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1360. class Win32_PowerPoint11DefaultFileLoc
  1361. {
  1362.     [read: ToInstance ToSubClass] string Path;
  1363. };
  1364.  
  1365. //**************************************************************************
  1366. //* Class: Win32_PowerPoint11StartupFolder
  1367. //* Derived from: 
  1368. //**************************************************************************
  1369. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1370. class Win32_PowerPoint11StartupFolder
  1371. {
  1372.     [read: ToInstance ToSubClass] string Path;
  1373. };
  1374.  
  1375. //**************************************************************************
  1376. //* Class: Win32_PowerPoint11PageSetup
  1377. //* Derived from: 
  1378. //**************************************************************************
  1379. [dynamic: ToInstance, provider("OffProv11")]
  1380. class Win32_PowerPoint11PageSetup
  1381. {
  1382.     [key, read: ToInstance ToSubClass] uint32 Section;
  1383.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  1384.     [read: ToInstance ToSubClass] real32 FooterDistance;
  1385.     [read: ToInstance ToSubClass] real32 TopMargin;
  1386.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1387.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1388.     [read: ToInstance ToSubClass] real32 RightMargin;
  1389.     [read: ToInstance ToSubClass] string PaperSize;
  1390.     [read: ToInstance ToSubClass] real32 PageHeight;
  1391.     [read: ToInstance ToSubClass] real32 PageWidth;
  1392.     [read: ToInstance ToSubClass] string Orientation;
  1393.     [read: ToInstance ToSubClass] string SectionStart;
  1394.     [read: ToInstance ToSubClass] string VerticalAlignment;
  1395.     [read: ToInstance ToSubClass] real32 CharsLine;
  1396.     [read: ToInstance ToSubClass] real32 LinesPage;
  1397.     [read: ToInstance ToSubClass] string Notables;
  1398. };
  1399.  
  1400. //**************************************************************************
  1401. //* Class: Win32_Publisher11ActiveDocument
  1402. //* Derived from: 
  1403. //**************************************************************************
  1404. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1405. class Win32_Publisher11ActiveDocument
  1406. {
  1407.     [read: ToInstance ToSubClass] string Name;
  1408.     [read: ToInstance ToSubClass] string Path;
  1409.     [read: ToInstance ToSubClass] real32 Size;
  1410.     [read: ToInstance ToSubClass] datetime CreateDate;
  1411.     [read: ToInstance ToSubClass] string Author;
  1412.     [read: ToInstance ToSubClass] datetime LastSavedDate;
  1413.     [read: ToInstance ToSubClass] string LastAuthor;
  1414.     [read: ToInstance ToSubClass] string Template;
  1415.     [read: ToInstance ToSubClass] uint32 Chars;
  1416.     [read: ToInstance ToSubClass] uint32 CharsWithSpaces;
  1417.     [read: ToInstance ToSubClass] uint32 Words;
  1418.     [read: ToInstance ToSubClass] uint32 Lines;
  1419.     [read: ToInstance ToSubClass] uint32 Paragraphs;
  1420.     [read: ToInstance ToSubClass] uint32 Pages;
  1421.     [read: ToInstance ToSubClass] uint32 Sections;
  1422.     [read: ToInstance ToSubClass] string View;
  1423.     [read: ToInstance ToSubClass] uint32 ZoomPercentage;
  1424.     [read: ToInstance ToSubClass] boolean AllowFastSaves;
  1425.     [read: ToInstance ToSubClass] sint32 WindowPosLeft;
  1426.     [read: ToInstance ToSubClass] sint32 WindowPosTop;
  1427.     [read: ToInstance ToSubClass] string StoryTypes;
  1428. };
  1429.  
  1430. //**************************************************************************
  1431. //* Class: Win32_Publisher11ActiveDocumentNoTable
  1432. //* Derived from: 
  1433. //**************************************************************************
  1434. [dynamic: ToInstance, provider("OffProv11")]
  1435. class Win32_Publisher11ActiveDocumentNoTable
  1436. {
  1437.     [key, read: ToInstance ToSubClass] string Text;
  1438. };
  1439.  
  1440. //**************************************************************************
  1441. //* Class: Win32_Publisher11AlternateStartupFileLocation
  1442. //* Derived from: 
  1443. //**************************************************************************
  1444. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1445. class Win32_Publisher11AlternateStartupFileLocation
  1446. {
  1447.     [read: ToInstance ToSubClass] string Path;
  1448. };
  1449.  
  1450. //**************************************************************************
  1451. //* Class: Win32_Publisher11COMAddIns
  1452. //* Derived from: 
  1453. //**************************************************************************
  1454. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1455. class Win32_Publisher11COMAddIns
  1456. {
  1457.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1458. };
  1459.  
  1460. //**************************************************************************
  1461. //* Class: Win32_Publisher11COMAddIn
  1462. //* Derived from: 
  1463. //**************************************************************************
  1464. [dynamic: ToInstance, provider("OffProv11")]
  1465. class Win32_Publisher11COMAddIn
  1466. {
  1467.     [key, read: ToInstance ToSubClass] string Name;
  1468.     [read: ToInstance ToSubClass] string Installed;
  1469.     [read: ToInstance ToSubClass] string Creator;
  1470.     [read: ToInstance ToSubClass] string Guid;
  1471.     [read: ToInstance ToSubClass] string Path;
  1472. };
  1473.  
  1474. //**************************************************************************
  1475. //* Class: Win32_Publisher11DefaultFileLocation
  1476. //* Derived from: 
  1477. //**************************************************************************
  1478. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1479. class Win32_Publisher11DefaultFileLocation
  1480. {
  1481.     [read: ToInstance ToSubClass] string Path;
  1482. };
  1483.  
  1484. //**************************************************************************
  1485. //* Class: Win32_Publisher11Tables
  1486. //* Derived from: 
  1487. //**************************************************************************
  1488. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1489. class Win32_Publisher11Tables
  1490. {
  1491.     [read: ToInstance ToSubClass] uint32 TableCount;
  1492. };     
  1493.      
  1494. //**************************************************************************
  1495. //* Class: Win32_Publisher11SelectedTable
  1496. //* Derived from: 
  1497. //**************************************************************************
  1498. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1499. class Win32_Publisher11SelectedTable
  1500. {
  1501.     [read: ToInstance ToSubClass] uint32 Page;
  1502.     [read: ToInstance ToSubClass] uint32 Section;
  1503.     [read: ToInstance ToSubClass] uint32 Rows;
  1504.     [read: ToInstance ToSubClass] uint32 Columns;
  1505.     [read: ToInstance ToSubClass] boolean AllowPageBreaks;
  1506.     [read: ToInstance ToSubClass] string RowsAllowPageBreaks;
  1507.     [read: ToInstance ToSubClass] boolean AllowAutoFit;
  1508.     [read: ToInstance ToSubClass] string CellsAllowAutoFit;
  1509.     [read: ToInstance ToSubClass] uint32 NestingLevel;
  1510.     [read: ToInstance ToSubClass] uint32 Tables;
  1511.     [read: ToInstance ToSubClass] string PreferredWidthType;
  1512.     [read: ToInstance ToSubClass] real32 PreferredWidth;
  1513.     [read: ToInstance ToSubClass] real32 Spacing;
  1514.     [read: ToInstance ToSubClass] real32 TopMargin;
  1515.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1516.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1517.     [read: ToInstance ToSubClass] real32 RightMargin;
  1518.     [read: ToInstance ToSubClass] string RowAlignment;
  1519.     [read: ToInstance ToSubClass] string RowHeightRule;
  1520.     [read: ToInstance ToSubClass] real32 LeftIndent;
  1521.     [read: ToInstance ToSubClass] boolean Uniform;
  1522. };    
  1523.  
  1524.  
  1525. //**************************************************************************
  1526. //* Class: Win32_Publisher11Table
  1527. //* Derived from: 
  1528. //**************************************************************************
  1529. [dynamic: ToInstance, provider("OffProv11")]
  1530. class Win32_Publisher11Table
  1531. {
  1532.     [key, read: ToInstance ToSubClass] uint32 Index;
  1533.     [read: ToInstance ToSubClass] uint32 Page;
  1534.     [read: ToInstance ToSubClass] uint32 Section;
  1535.     [read: ToInstance ToSubClass] uint32 Rows;
  1536.     [read: ToInstance ToSubClass] uint32 Columns;
  1537.     [read: ToInstance ToSubClass] boolean NestedTables;
  1538. };
  1539.     
  1540.  
  1541. //**************************************************************************
  1542. //* Class: Win32_Publisher11Fonts
  1543. //* Derived from: 
  1544. //**************************************************************************
  1545. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1546. class Win32_Publisher11Fonts
  1547. {
  1548.     [read: ToInstance ToSubClass] boolean EmbedTrueTypeFonts;
  1549.     [read: ToInstance ToSubClass] uint32 FontCount;
  1550. };
  1551.  
  1552. //**************************************************************************
  1553. //* Class: Win32_Publisher11Font
  1554. //* Derived from: 
  1555. //**************************************************************************
  1556. [dynamic: ToInstance, provider("OffProv11")]
  1557. class Win32_Publisher11Font
  1558. {
  1559.     [key, read: ToInstance ToSubClass] string Name;
  1560. };
  1561.  
  1562.  
  1563. //**************************************************************************
  1564. //* Class: Win32_Publisher11Hyperlinks
  1565. //* Derived from: 
  1566. //**************************************************************************
  1567. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1568. class Win32_Publisher11Hyperlinks
  1569. {
  1570.     [read: ToInstance ToSubClass] uint32 HyperlinkCount;
  1571. };
  1572.  
  1573. //**************************************************************************
  1574. //* Class: Win32_Publisher11Hyperlink
  1575. //* Derived from: 
  1576. //**************************************************************************
  1577. [dynamic: ToInstance, provider("OffProv11")]
  1578. class Win32_Publisher11Hyperlink
  1579. {
  1580.     [key, read: ToInstance ToSubClass] uint32 Index;
  1581.     [read: ToInstance ToSubClass] string Target;
  1582.     [read: ToInstance ToSubClass] string Address;
  1583.     [read: ToInstance ToSubClass] string TextToDisplay;
  1584.     [read: ToInstance ToSubClass] string Type;
  1585.     [read: ToInstance ToSubClass] string Subaddress;
  1586.     [read: ToInstance ToSubClass] string ScreenTip;
  1587.     [read: ToInstance ToSubClass] string Name;
  1588. };
  1589.  
  1590. //**************************************************************************
  1591. //* Class: Win32_Publisher11MailMerge
  1592. //* Derived from: 
  1593. //**************************************************************************
  1594. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1595. class Win32_Publisher11MailMerge
  1596. {
  1597.     [read: ToInstance ToSubClass] string DocumentName;
  1598.     [read: ToInstance ToSubClass] string DocumentType;
  1599.     [read: ToInstance ToSubClass] string MergeTo;
  1600.     [read: ToInstance ToSubClass] string State;
  1601.     [read: ToInstance ToSubClass] boolean SuppressBlankLines;
  1602.     [read: ToInstance ToSubClass] boolean ViewFieldCodes;
  1603.     [read: ToInstance ToSubClass] uint32 FieldCount;
  1604.     [read: ToInstance ToSubClass] string FieldCodes;
  1605.     [read: ToInstance ToSubClass] string DataSourceName;
  1606.     [read: ToInstance ToSubClass] string DataSourceType;
  1607.     [read: ToInstance ToSubClass] string ActiveRecord;
  1608.     [read: ToInstance ToSubClass] string FieldNames;
  1609.     [read: ToInstance ToSubClass] string Notables;
  1610. };    
  1611.     
  1612. //**************************************************************************
  1613. //* Class: Win32_Publisher11PageNumber
  1614. //* Derived from: 
  1615. //**************************************************************************
  1616. [dynamic: ToInstance, provider("OffProv11")]
  1617. class Win32_Publisher11PageNumber
  1618. {
  1619.     [key, read: ToInstance ToSubClass] uint32 Section;
  1620.     [read: ToInstance ToSubClass] uint32 PageNumbers;
  1621.     [read: ToInstance ToSubClass] string PageNumbersIn;
  1622.     [read: ToInstance ToSubClass] uint32 Start;
  1623.     [read: ToInstance ToSubClass] boolean Restart;
  1624.     [read: ToInstance ToSubClass] boolean ShowFirst;
  1625. };    
  1626.     
  1627. //**************************************************************************
  1628. //* Class: Win32_Publisher11PageSetup
  1629. //* Derived from: 
  1630. //**************************************************************************
  1631. [dynamic: ToInstance, provider("OffProv11")]
  1632. class Win32_Publisher11PageSetup
  1633. {
  1634.     [key, read: ToInstance ToSubClass] uint32 Section;
  1635.     [read: ToInstance ToSubClass] real32 HeaderDistance;
  1636.     [read: ToInstance ToSubClass] real32 FooterDistance;
  1637.     [read: ToInstance ToSubClass] real32 TopMargin;
  1638.     [read: ToInstance ToSubClass] real32 BottomMargin;
  1639.     [read: ToInstance ToSubClass] real32 LeftMargin;
  1640.     [read: ToInstance ToSubClass] real32 RightMargin;
  1641.     [read: ToInstance ToSubClass] string PaperSize;
  1642.     [read: ToInstance ToSubClass] real32 PageHeight;
  1643.     [read: ToInstance ToSubClass] real32 PageWidth;
  1644.     [read: ToInstance ToSubClass] string Orientation;
  1645.     [read: ToInstance ToSubClass] string SectionStart;
  1646.     [read: ToInstance ToSubClass] string VerticalAlignment;
  1647.     [read: ToInstance ToSubClass] real32 CharsLine;
  1648.     [read: ToInstance ToSubClass] real32 LinesPage;
  1649.     [read: ToInstance ToSubClass] string Notables;
  1650. };
  1651.  
  1652.     
  1653. //    Win32_Publisher11PageNumbers
  1654.     
  1655.  
  1656.     //**************************************************************************
  1657. //* Win32_Publisher11Styles
  1658. //* Derived from: 
  1659. //**************************************************************************
  1660. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1661. class Win32_Publisher11Styles
  1662. {
  1663.     [read: ToInstance ToSubClass] boolean AutoFormatAsYouTypeDefineStyles;
  1664.     [read: ToInstance ToSubClass] boolean AutoFormatPreserveStyles;
  1665.     [read: ToInstance ToSubClass] uint32 ParagraphStyleCount;
  1666.     [read: ToInstance ToSubClass] uint32 CharacterStyleCount;
  1667. };
  1668.  
  1669. //**************************************************************************
  1670. //* Class: Win32_Publisher11ParagraphStyle
  1671. //* Derived from: 
  1672. //**************************************************************************
  1673. [dynamic: ToInstance, provider("OffProv11")]
  1674. class Win32_Publisher11ParagraphStyle
  1675. {
  1676.     [key, read: ToInstance ToSubClass] string Name;
  1677.     [read: ToInstance ToSubClass] string Description;
  1678.     [read: ToInstance ToSubClass] string BaseStyle;
  1679.     [read: ToInstance ToSubClass] string NextStyle;
  1680.     [read: ToInstance ToSubClass] boolean BuiltIn;
  1681.     [read: ToInstance ToSubClass] boolean NoProofing;
  1682.     [read: ToInstance ToSubClass] boolean AutomaticallyUpdate;
  1683. };
  1684.  
  1685. //**************************************************************************
  1686. //* Class: Win32_Publisher11CharacterStyle
  1687. //* Derived from: 
  1688. //**************************************************************************
  1689. [dynamic: ToInstance, provider("OffProv11")]
  1690. class Win32_Publisher11CharacterStyle
  1691. {
  1692.     [key, read: ToInstance ToSubClass] string Name;
  1693.     [read: ToInstance ToSubClass] string Description;
  1694.     [read: ToInstance ToSubClass] string BaseStyle;
  1695.     [read: ToInstance ToSubClass] boolean BuiltIn;
  1696. };
  1697.     
  1698. //**************************************************************************
  1699. //* Class: Win32_Publisher11StartupFolder
  1700. //* Derived from: 
  1701. //**************************************************************************
  1702. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1703. class Win32_Publisher11StartupFolder
  1704. {
  1705.     [read: ToInstance ToSubClass] string Path;
  1706. };
  1707.     
  1708.     
  1709. //**************************************************************************
  1710. //* Class: Win32_Publisher11Sections
  1711. //* Derived from: 
  1712. //**************************************************************************
  1713. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1714. class Win32_Publisher11Sections
  1715. {
  1716.     [read: ToInstance ToSubClass] uint32 SectionCount;
  1717. };    
  1718.  
  1719. //**************************************************************************
  1720. //* Class: Win32_OutlookAlternateStartupFile
  1721. //* Derived from: 
  1722. //**************************************************************************
  1723. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1724. class Win32_OutlookAlternateStartupFile
  1725. {
  1726.     [read: ToInstance ToSubClass] string Path;
  1727. };
  1728.  
  1729.  
  1730. //**************************************************************************
  1731. //* Class:Win32_OutlookStartupFolder
  1732. //* Derived from: 
  1733. //**************************************************************************
  1734. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1735. class Win32_OutlookStartupFolder
  1736. {
  1737.     [read: ToInstance ToSubClass] string Path;
  1738. };
  1739.  
  1740. //**************************************************************************
  1741. //* Class: Win32_OutlookDefaultFileLocation
  1742. //* Derived from: 
  1743. //**************************************************************************
  1744. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1745. class Win32_OutlookDefaultFileLocation
  1746. {
  1747.     [read: ToInstance ToSubClass] string Path;
  1748. };
  1749.  
  1750.  
  1751.  
  1752.  
  1753.  
  1754.  
  1755. //**************************************************************************
  1756. //* Class: Win32_OutlookComAddins
  1757. //* Derived from: 
  1758. //**************************************************************************
  1759. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1760. class Win32_OutlookComAddins
  1761. {
  1762.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1763. };
  1764.  
  1765. //**************************************************************************
  1766. //* Class: Win32_OutlookComAddin
  1767. //* Derived from: 
  1768. //**************************************************************************
  1769. [dynamic: ToInstance, provider("OffProv11")]
  1770. class Win32_OutlookComAddin
  1771. {
  1772.     [key, read: ToInstance ToSubClass] string Name;
  1773.     [read: ToInstance ToSubClass] string Installed;
  1774.     [read: ToInstance ToSubClass] string Creator;
  1775.     [read: ToInstance ToSubClass] string Guid;
  1776.     [read: ToInstance ToSubClass] string Path;
  1777. };
  1778.  
  1779. //**************************************************************************
  1780. //* Class: Win32_OutlookComAddins
  1781. //* Derived from: 
  1782. //**************************************************************************
  1783. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1784. class Win32_OutlookComAddins
  1785. {
  1786.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1787. };
  1788.  
  1789. //**************************************************************************
  1790. //* Class: Win32_OutlookComAddin
  1791. //* Derived from: 
  1792. //**************************************************************************
  1793. [dynamic: ToInstance, provider("OffProv11")]
  1794. class Win32_OutlookComAddin
  1795. {
  1796.     [key, read: ToInstance ToSubClass] string Name;
  1797.     [read: ToInstance ToSubClass] string Installed;
  1798.     [read: ToInstance ToSubClass] string Creator;
  1799.     [read: ToInstance ToSubClass] string Guid;
  1800.     [read: ToInstance ToSubClass] string Path;
  1801. };
  1802.  
  1803.  
  1804. //**************************************************************************
  1805. //* Class: Win32_Access11ComAddins
  1806. //* Derived from: 
  1807. //**************************************************************************
  1808. [dynamic: ToInstance, provider("OffProv11"), Singleton: DisableOverride ToInstance ToSubClass]
  1809. class Win32_Access11ComAddins
  1810. {
  1811.     [read: ToInstance ToSubClass] uint32 AddInCount;
  1812. };
  1813.  
  1814. //**************************************************************************
  1815. //* Class: Win32_Access11ComAddin
  1816. //* Derived from: 
  1817. //**************************************************************************
  1818. [dynamic: ToInstance, provider("OffProv11")]
  1819. class Win32_Access11ComAddin
  1820. {
  1821.     [key, read: ToInstance ToSubClass] string Name;
  1822.     [read: ToInstance ToSubClass] string Installed;
  1823.     [read: ToInstance ToSubClass] string Creator;
  1824.     [read: ToInstance ToSubClass] string Guid;
  1825.     [read: ToInstance ToSubClass] string Path;
  1826. };
  1827.  
  1828. //* EOF OInfoP11.mof
  1829.